From bc5d383b9d5f3829e6c14a3bbbc5c61b411f9a2b Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Mon, 16 Jul 2012 13:47:04 +0200 Subject: [PATCH] cssstyleproperty: Call _compute() in the compute function ... instead pof just reffing the value. --- gtk/gtkcssstyleproperty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkcssstyleproperty.c b/gtk/gtkcssstyleproperty.c index cc08e188f8..8607af52a0 100644 --- a/gtk/gtkcssstyleproperty.c +++ b/gtk/gtkcssstyleproperty.c @@ -239,7 +239,7 @@ gtk_css_style_property_real_compute_value (GtkCssStyleProperty *property, GtkStyleContext *context, GtkCssValue *specified) { - return _gtk_css_value_ref (specified); + return _gtk_css_value_compute (specified, _gtk_css_style_property_get_id (property), context); } static void -- 2.30.2